home *** CD-ROM | disk | FTP | other *** search
/ X User Tools / X User Tools (O'Reilly and Associates)(1994).ISO / sun4c / archive / tcltk.z / tcltk / man / catn / puts.n < prev    next >
Text File  |  1994-09-20  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4. puts(n)               Tcl Built-In Commands
  5.  
  6.  
  7.  
  8. _________________________________________________________________
  9.  
  10. NAME
  11.      puts - Write to a file
  12.  
  13. SYNOPSIS
  14.      puts ?-nonewline? ?_f_i_l_e_I_d? _s_t_r_i_n_g
  15. _________________________________________________________________
  16.  
  17.  
  18. DESCRIPTION
  19.      Writes the characters given by _s_t_r_i_n_g to the file  given  by
  20.      _f_i_l_e_I_d.   _F_i_l_e_I_d must have been the return value from a pre-
  21.      vious call to open, or it may be stdout or stderr  to  refer
  22.      to one of the standard I/O channels; it must refer to a file
  23.      that was opened for writing.  If no _f_i_l_e_I_d is specified then
  24.      it  defaults  to  stdout.   Puts  normally outputs a newline
  25.      character after _s_t_r_i_n_g, but this feature may  be  suppressed
  26.      by  specifying  the  -nonewline  switch.  Output to files is
  27.      buffered internally by Tcl; the flush command may be used to
  28.      force buffered characters to be output.
  29.  
  30.  
  31. KEYWORDS
  32.      file, newline, output, write
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. Tcl                                                             1
  64.  
  65.  
  66.  
  67.